From a0d123d8045fcd2acb911969cb14ee4b2e106b01 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 27 Sep 2007 15:22:29 +0100 Subject: [PATCH] xend: Fix dummy security_policy_dir. Changeset 15951:ad339d88639d split policy_dir_prefix into security_dir_prefix and policy_dir_prefix in acm code. I think this needs to be reflected in the dummy module as well (otherwise we blowup when bootloader.py tries to reference security.security_dir_prefix). Fixed in below patch. Signed-off-by: Alex Williamson --- tools/python/xen/util/xsm/dummy/dummy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/python/xen/util/xsm/dummy/dummy.py b/tools/python/xen/util/xsm/dummy/dummy.py index 04966e4daf..42a41b36c9 100644 --- a/tools/python/xen/util/xsm/dummy/dummy.py +++ b/tools/python/xen/util/xsm/dummy/dummy.py @@ -6,6 +6,7 @@ class XSMError(Exception): def __str__(self): return repr(self.value) +security_dir_prefix = ""; policy_dir_prefix = ""; active_policy = ""; NULL_SSIDREF = 0; -- 2.30.2